-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Auditbeat dashboards (overview, sockets, execs) #5516
Add Auditbeat dashboards (overview, sockets, execs) #5516
Conversation
Add dashboards to view events generated by the Linux audit framework. This PR adds three dashboards: - Overview - A general dashboard showing a summary of all events. - Executions - A dashboard showing process executions (`execve` and `execveat`) syscalls. - Sockets - A dashboard showing information related sockets and remote connectivity (e.g. `bind`, `connect`, `accept`, `recvfrom`).
9ed4e00
to
98cb495
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. What happens if someone does only specificy a subset of the rules for the dashboard? I assume some of the graphs will just show "no data"?
Without adding the proper rules the execution and socket dashboards will show no data. The overview dashboard will likely contain some events because even with no audit rules installed there are some events generated. |
Should this be back-ported to 6.0 or is it too late? |
## in 64 bit mode. This rule will detect any use of the 32 bit syscalls | ||
## because this might be a sign of someone exploiting a hole in the 32 | ||
## bit API. | ||
#-a always,exit -F arch=b32 -S all -F key=32bit-abi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome that we've got these.
Will add the 5.x conversions in a separate PR. |
Add dashboards to view events generated by the Linux audit framework. This PR adds three dashboards:
execve
andexecveat
) syscalls.bind
,connect
,accept
,recvfrom
).